home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2009 February
/
PCWFEB09.iso
/
Software
/
Resources
/
Chat & Communication
/
Digsby build 37
/
digsby_setup.exe
/
lib
/
gui
/
clique.pyo
(
.txt
)
< prev
next >
Wrap
Python Compiled Bytecode
|
2008-10-13
|
1KB
|
40 lines
# Source Generated with Decompyle++
# File: in.pyo (Python 2.5)
from util import FunctionList
class Clique(set):
def __setattr__(self, attr, val):
for o in self:
setattr(o, attr, val)
def __getattr__(self, attr):
try:
return set.__getattr__(self, attr)
except AttributeError:
try:
return self.__dict__[attr]
except KeyError:
default = lambda *a, **k: pass
res = (None, FunctionList)((lambda .0: for x in .0:
getattr(x, attr, default))(self))
return res
except:
None<EXCEPTION MATCH>KeyError
None<EXCEPTION MATCH>KeyError
def __repr__(self):
return '<%s: %r>' % (type(self).__name__, set.__repr__(self))